fffa998450b50fbd930410eadaa59a45bfa18de3,plugins/git4idea/src/git4idea/repo/GitRepositoryReader.java,GitRepositoryReader,readBranchFile,#File#,374

Before Change



  @NotNull
  private static String readBranchFile(@NotNull File branchFile) {
    String rev = RepositoryUtil.tryLoadFile(branchFile);
    return rev.trim();
  }

  @NotNull

After Change



  @NotNull
  private static String readBranchFile(@NotNull File branchFile) {
    return RepositoryUtil.tryLoadFile(branchFile);
  }

  @NotNull